home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / mg / src.lzh / amiga / do_menu.h < prev    next >
C/C++ Source or Header  |  1990-05-23  |  322b  |  22 lines

  1. /*
  2.  * This controls generation of the code for handling menus. We need this code
  3.  * if either the BROWSER or the MENU are wanted.
  4.  */
  5. #ifndef    BROWSER
  6. #include "browser.h"
  7. #endif
  8.  
  9. #ifndef    MENU
  10. #include "menu.h"
  11. #endif
  12.  
  13. #ifdef    MENU
  14. #undef    DO_MENU
  15. #define    DO_MENU
  16. #endif
  17.  
  18. #ifdef    BROWSER
  19. #undef    DO_MENU
  20. #define    DO_MENU
  21. #endif
  22.